csr_to_dense Function

public pure function csr_to_dense(a) result(x)

Converts a CSR matrix to a dense matrix.

Arguments

Type IntentOptional Attributes Name
class(csr_matrix), intent(in) :: a

The CSR matrix to convert.

Return Value real(kind=real64), allocatable, dimension(:,:)

The dense matrix.